Questions tagged [gosu]

Gosu is an imperative statically-typed object-oriented programming language for the Java Virtual Machine (JVM) that is designed to be expressive, easy-to-read, and reasonably fast. The language is rooted in concepts from Java, C#, and ECMAScript, but borrows some constructs from Ruby and dynamic languages.

Gosu:

  • is object oriented
  • is statically typed
  • is imperative
  • is 100% compatible with Java
  • features type inference
  • supports closures
  • provides simplified generics
  • is provided via the Apache License v2.0

One of the features that stands apart from other JVM languages it its "open type system". For example, there is an XSD Type Loader that will inspect XSD (XML Schema) files on the classpath and generate types for the Gosu compiler without an additional code-generation step.

For more information, go to http://gosu-lang.github.io/

117 questions
0
votes
1 answer

Cant able to create activity using Claim API

we have custom method in claimapi which will create activity and also add the document in claim. When we trigger that method we are getting below error message. Error message :java.lang.IllegalArgumentException: Cannot re-add Activity:-505001 since…
Vasanth
  • 35
  • 5
0
votes
1 answer

How To Add External Dependency in Guidewire

I need an external library to be used in Guidewire. Below is the name of the library in which I am interested which is available on the maven repository. I am not sure how to add an external java library inside ClaimCenter or PolicyCenter. Any…
0
votes
1 answer

Unable to start guidewire CC server from tomcat

We have been trying to start the claimcenter server from tomcat. The server is getting started even though it throws exception with the message "ClaimCenter unable to start" in the logs. Please find the log details…
Vasanth
  • 35
  • 5
0
votes
1 answer

Unable to update contact details in CC from parties involved screen

Unable to update contactmanager contacts in claimcenter from parties involved screen. It tries to insert record in contact table but it should have update the existing contact. Getting below error…
Vasanth
  • 35
  • 5
0
votes
2 answers

Guidewire Clustering

I am trying to enable clustering in one of the higher environments. The changes which I did was enabling the clustering flag to true in context.xml and added the server roles in the java properties class in the server. Apart from this do we need to…
shaher
  • 17
  • 3
0
votes
1 answer

Getting DBNullConstraintException while creating exposure

while creating exposure I am getting the below error. The logs just show DBNullConstraintException, so I could not find which entity or column is causing the issue. I am not sure how can i do analysis on this issue? Log details: ERROR Displaying to…
Vasanth
  • 35
  • 5
0
votes
1 answer

Getting ClassCastException while typecasting for cutom field in guidewire pc

I have added a new filed called WebAddress_Ext in Contact.etx file. After this I have validated the changes and restarted the server. Now in ContactNameInputSet.company.pcf file I have added new InputText field and for value filed I've given the…
user2636874
  • 889
  • 4
  • 15
  • 36
0
votes
1 answer

IllegalArgumentException: property PublicID is not on root type entity.UserRegion

I'm querying a join entity, userregion, to find regions with a particular zipcode and users that are active. Then I compare the results between the two of them. userregion ------------------------ PublicID | UserID |…
Connor D
  • 103
  • 1
  • 9
0
votes
1 answer

Using .compare with a property that returns a list

I'm using query.make to populate a list of users within a specific region. Originally, I used .where to pull the regions into memory, but this is inefficient because there's a large number of them. I want to rewrite the query using .compare to…
Connor D
  • 103
  • 1
  • 9
0
votes
1 answer

Could not able to access CELL_TYPE_STRING variable from XSSFCell

I am trying to set cell type value by passing XSSFCell.CELL_TYPE_STRING. But it is throwing error "No static property descriptor found for property, CELL_TYPE_STRING" cell.setCellType(XSSFCell.CELL_TYPE_STRING)
Vasanth
  • 35
  • 5
0
votes
2 answers

How to return only selected columns from querybuilder in guidewire v10?

I want to return only two columns from the entity-Check. I tried below but it doesnt work. Please note that I am using Guidewire version 10. Query.make(entity.Check) .compare(Check#Createtime, Equals,…
Vasanth
  • 35
  • 5
0
votes
1 answer

Atomic widget to represent financial amount in guidewire pcf?

Which atomic widget we need to use to represent the Financial Amount like Monetary Amount, etc in the PCF? Thanks
user2636874
  • 889
  • 4
  • 15
  • 36
0
votes
1 answer

What is Keyable is Guidewire Policy Center?

What is Keyable in Guidewire PolicyCenter? Is it related to entities? How can we create this Keyable enities in Guidewire PolicyCenter?
user2636874
  • 889
  • 4
  • 15
  • 36
0
votes
1 answer

What is nonpersistent entity in guidewire and how can we create it?

How many types of entities we have in PolicyCenter? What are those? What is nonpersistent entity in policyCenter? How can we create it? Please explain me.
user2636874
  • 889
  • 4
  • 15
  • 36
0
votes
1 answer

How to control visibility of a PCF using Reflection in Guidewire

I am trying to use on my PCF RangeCell element ( ClaimCenter version -10) to control the visibility of this field. Is that possible at all? What I have now is below: it doesn't work...
ljs
  • 495
  • 1
  • 8
  • 23