I would like to know what is my billing plan whether I am on a paid version or a free version
Hi @Hy Nguyen ,
I have the same problem as you. Did you find a solution?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found the solution here: https://developer.atlassian.com/server/framework/atlassian-sdk/creating-entities/#creating-an-entity-with--not-null--constraints
To create a Application entity, I use this constructor:
final Application application = ao.create(
Application.class,
new DBParam("NOM",nomApplication),
new DBParam("NO_APPLICATION",noApplication),
new DBParam("UUID",uuid),
new DBParam("NOM_ABREGE",nomAbrege)
);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.