Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

How to get custom attribute of type enumeration server side

Hello All,
Can some one suggest how to get (read) the story point enumeration value to make use in a server side plug-in ?

Below code works for standard attribute like duration, but not for enumeration type.
------------
private long getDuration(IWorkItem child, IAttribute attribute, IProgressMonitor monitor) throws TeamRepositoryException {
    long duration = 0;
    if(attribute!=null && child.hasAttribute(attribute)){
        Long tempDuration = (Long)child.getValue(attribute);
        if(tempDuration!=null&& tempDuration.longValue()>0)
            return tempDuration.longValue();
        }
    return duration;
}

--------------
Thank you.

0 votes


Accepted answer

Permanent link
See https://rsjazz.wordpress.com/2012/08/20/manipulationg-work-item-enumeration-values/

More details:

    private String calculateEnumerationLiteralAsString(Object value,
            IAttribute attribute) throws TeamRepositoryException {
        if (value == null) {
            return CONSTANT_NO_VALUE;
        }
        if (!(value instanceof Identifier<?>)) {
            return "Value not an enumeration literal";
        }
        IEnumeration<? extends ILiteral> enumeration = getWorkItemCommon()
                .resolveEnumeration(attribute, getMonitor());

        @SuppressWarnings("unchecked")
        Identifier<? extends ILiteral> currentIdentifier = (Identifier<? extends ILiteral>) value;
        ILiteral literal = enumeration
                .findEnumerationLiteral(currentIdentifier);
        return literal.getName();
    }

Ratheesh Madathil selected this answer as the correct answer

0 votes

Comments

Thank you Ralph for your answer. In fact we had refereed already to the link you mentioned, but not successful.
The error while deploying is "bundle could not be resolved".
My colleague has given now the full code for your reference, can be followed up further in the following link:.
https://jazz.net/forum/questions/203746/how-to-get-the-story-point-values-using-server-side-api

Thank you Ralph, that hint worked..


One other answer

Permanent link
Please carefully read https://jazz.net/forum/questions/203755/how-should-i-ask-a-question-in-the-forum-if-i-want-to-receive-useful-answers

The error you show is not an error in the code. It is an error in setting up the plugin and deploying it.
Before you even get to this point, you should have already followed https://rsjazz.wordpress.com/2013/02/28/setting-up-rational-team-concert-for-api-development/ and debugged your code on Jetty. Once the debugging works, it is easy enough to very fy the code works and if it does, then you deploy on the server and know that the code works and your problems are due to deployment problems.

Why do you run two threads with the same question? Can't you coordinate with your colleague?

0 votes

Comments

ok, got it.
We will follow up with this question.
Configure Jetty for debugging- we are not successful yet (port error while launch). We will try using your blog entries from start again.

What error do you get with Jetty?
If the port is already taken, run a command like netstat to find out what process sits on the port. You can also change the port by editing the jetty launch. The port is set as a variable. Also shut down the development repository when running the JUnit to create the test database and give it time to succeed.



Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,940

Question asked: Jul 31 '15, 5:17 a.m.

Question was seen: 2,424 times

Last updated: Aug 14 '15, 10:19 a.m.

Confirmation Cancel Confirm