-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from vitiwari/master
Default Template update
- Loading branch information
Showing
19 changed files
with
3,975 additions
and
327 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/com/bmc/truesight/saas/remedy/integration/beans/FieldInstance.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.bmc.truesight.saas.remedy.integration.beans; | ||
|
||
public enum FieldInstance { | ||
|
||
CharacterField("CharacterField"), IntegerField("IntegerField"), DecimalField("DecimalField"), RealField( | ||
"RealField"), DiaryField("DiaryField"), SelectionField("SelectionField"), AttachmentField( | ||
"AttachmentField"), CurrencyField("CurrencyField"), DateOnlyField("DateOnlyField"), TimeOnlyField( | ||
"TimeOnlyField"), DateTimeField("DateTimeField"), UnknownField("UnknownField"); | ||
|
||
private final String text; | ||
|
||
private FieldInstance(String text) { | ||
this.text = text; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return text; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
src/main/java/com/bmc/truesight/saas/remedy/integration/beans/InvalidEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package com.bmc.truesight.saas.remedy.integration.beans; | ||
|
||
public class InvalidEvent { | ||
|
||
private String entryId; | ||
private TSIEvent invalidEvent; | ||
private long eventSize; | ||
private String maxSizePropertyName; | ||
private long propertySize; | ||
|
||
public InvalidEvent(String entryId) { | ||
this.entryId = entryId; | ||
} | ||
|
||
public TSIEvent getInvalidEvent() { | ||
return invalidEvent; | ||
} | ||
|
||
public void setInvalidEvent(TSIEvent invalidEvent) { | ||
this.invalidEvent = invalidEvent; | ||
} | ||
|
||
public long getEventSize() { | ||
return eventSize; | ||
} | ||
|
||
public void setEventSize(long eventSize) { | ||
this.eventSize = eventSize; | ||
} | ||
|
||
public String getMaxSizePropertyName() { | ||
return maxSizePropertyName; | ||
} | ||
|
||
public void setMaxSizePropertyName(String maxSizePropertyName) { | ||
this.maxSizePropertyName = maxSizePropertyName; | ||
} | ||
|
||
public long getPropertySize() { | ||
return propertySize; | ||
} | ||
|
||
public void setPropertySize(long propertySize) { | ||
this.propertySize = propertySize; | ||
} | ||
|
||
public String getEntryId() { | ||
return entryId; | ||
} | ||
|
||
public void setEntryId(String entryId) { | ||
this.entryId = entryId; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.