Examples of SoapFieldValues


Examples of com.collabnet.ce.soap60.types.SoapFieldValues

        ITrackerAppSoap trackerClient = (ITrackerAppSoap) ClientSoapStubFactory.getSoapStub(ITrackerAppSoap.class, defaultWebserviceEndpoint);
        ArtifactSoapDO artifact = (ArtifactSoapDO) getUpdatedData();
        TrackerFieldSoapDO[] fields = trackerClient.getFields(getSessionKey(), artifact.getFolderId());
        boolean processEvent = false;

        SoapFieldValues flexFields = artifact.getFlexFields();

        for(TrackerFieldSoapDO field: fields) {
            System.out.println(field.getName() + field.getDisabled());
            if(field.getName().equals(ctfFieldName) && Arrays.asList(flexFields.getNames()).contains(field.getName())
                    && !field.getDisabled()) {
                if(field.getFieldValues() != null && field.getFieldValues().length > 0
                    && field.getFieldValues()[0].getValue() != null
                    && field.getFieldValues()[0].getValue().equals(ctfFieldValue)) {
                    processEvent = true;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.