use of org.apache.nifi.web.api.dto.PortDTO in project nifi-minifi by apache.
the class PortSchemaFunctionTest method setup.
@Before
public void setup() {
testId = UUID.nameUUIDFromBytes("testId".getBytes(StandardCharsets.UTF_8)).toString();
testName = "testName";
testWrapperName = "testWrapperName";
portDTO = new PortDTO();
portDTO.setId(testId);
portDTO.setName(testName);
portSchemaFunction = new PortSchemaFunction(testWrapperName);
}
Aggregations